home *** CD-ROM | disk | FTP | other *** search
/ Practical Web Pages 2004 September / PracticalWebPages-WPG13-09-2004-Coverdisc.iso / pc / Software / Toolkit / Sothink SWF Quicker 1.5 / data1.cab / Public_Files / Classes / SharedObject.as < prev    next >
Encoding:
Text File  |  2004-06-14  |  996 b   |  12 lines

  1. class SharedObject
  2. {
  3.     var data                                                             // Containing attributes assigned to the "data" property of a shared object. These attributes are saved if the object is persistent.
  4.  
  5.     function clear()                                                     // Clears all of the data from the shared object and deletes the shared object from the disk.
  6.     function flush(minimumDiskSpace)                                     // Writes a locally persistent shared object to a local file. 
  7.     function getLocal(objectName, localPath)                             // Returns a reference to a locally persistent shared object that is available only to the current client.
  8.     function getSize()                                                   // Gets the current size of the shared object. 
  9.  
  10.     function onStatus()                                                  // Invoked every time an error, warning, or informational note is posted for a shared object. 
  11. }
  12.